-- card: 16372 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4755 -- name: -- part contents for background part 4 ----- text ----- For example, the following function returns the square of its argument. ANSI C: float square(float x) /* function prototype */ { return x*x; } Pre-ANSI C: float square(x) /* not an ANSI C prototype */ float x; { return x*x; } -- part contents for background part 7 ----- text ----- 85